home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / programr / atre27.exe / ATREE_27 / INCLUDE / ATREE.RC < prev    next >
Text File  |  1992-08-01  |  4KB  |  70 lines

  1. /*****************************************************************************
  2.  ****                                                                     ****
  3.  **** atree.rc                                                            ****
  4.  ****                                                                     ****
  5.  **** atree release 2.7                                                   ****
  6.  **** Copyright (C) A. Dwelly, R. Manderscheid, M. Thomas, W.W. Armstrong ****
  7.  ****               1991, 1992                                            ****
  8.  ****                                                                     ****
  9.  **** License:                                                            ****
  10.  **** A royalty-free license is granted for the use of this software for  ****
  11.  **** NON_COMMERCIAL PURPOSES ONLY. The software may be copied and/or     ****
  12.  **** modified provided this notice appears in its entirety and unchanged ****
  13.  **** in all derived source programs.  Persons modifying the code are     ****
  14.  **** requested to state the date, the changes made and who made them     ****
  15.  **** in the modification history.                                        ****
  16.  ****                                                                     ****
  17.  **** Patent License:                                                     ****
  18.  **** The use of a digital circuit which transmits a signal indicating    ****
  19.  **** heuristic responsibility is protected by U. S. Patent 3,934,231     ****
  20.  **** and others assigned to Dendronic Decisions Limited of Edmonton,     ****
  21.  **** W. W. Armstrong, President.  A royalty-free license is granted      ****
  22.  **** by the company to use this patent for NON_COMMERCIAL PURPOSES ONLY  ****
  23.  **** to adapt logic trees using this program and its modifications.      ****
  24.  ****                                                                     ****
  25.  **** Limited Warranty:                                                   ****
  26.  **** This software is provided "as is" without warranty of any kind,     ****
  27.  **** either expressed or implied, including, but not limited to, the     ****
  28.  **** implied warrantees of merchantability and fitness for a particular  ****
  29.  **** purpose.  The entire risk as to the quality and performance of the  ****
  30.  **** program is with the user.  Neither the authors, nor the             ****
  31.  **** University of Alberta, its officers, agents, servants or employees  ****
  32.  **** shall be liable or responsible in any way for any damage to         ****
  33.  **** property or direct personal or consequential injury of any nature   ****
  34.  **** whatsoever that may be suffered or sustained by any licensee, user  ****
  35.  **** or any other party as a consequence of the use or disposition of    ****
  36.  **** this software.                                                      ****
  37.  ****                                                                     ****
  38.  **** Modification history:                                               ****
  39.  ****                                                                     ****
  40.  **** 92.27.02 Release 2.5, Monroe Thomas                                 ****
  41.  **** 92.03.07 Release 2.6, Monroe Thomas                                 ****
  42.  **** 92.01.08 Release 2.7, Monroe Thomas                                 ****
  43.  ****                                                                     ****
  44.  *****************************************************************************/
  45.  
  46. #ifndef WORKSHOP_INVOKED
  47. #include <windows.h>
  48. #endif
  49.  
  50. /* the following defines MUST match the defines in atree.h */
  51. #define IDD_ATREE_EPOCH 100
  52. #define IDD_ATREE_CORRECT 101
  53. #define IDD_ATREE_ACTUAL 102
  54.  
  55. atreeico ICON "atree.ico"
  56.  
  57. atreeStatus DIALOG 62, 46, 120, 84
  58. CAPTION "atree Status"
  59. STYLE WS_POPUP | WS_CAPTION
  60. BEGIN
  61.     CONTROL "Epoch:", 0, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE, 45, 13, 28, 9
  62.     CONTROL "Estimated # correct:", 0, "STATIC", WS_CHILD | WS_VISIBLE | 0x2L, 6, 32, 67, 9
  63.     CONTROL "", IDD_ATREE_EPOCH, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 13, 31, 9
  64.     CONTROL "", IDD_ATREE_CORRECT, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 32, 31, 9
  65.     CONTROL "Actual # correct:", -1, "STATIC", SS_RIGHT | WS_CHILD | WS_VISIBLE, 15, 44, 58, 9
  66.     CONTROL "", IDD_ATREE_ACTUAL, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE, 80, 44, 31, 9
  67.     ICON "atreeico", -1, 21, 9, 16, 16
  68.     DEFPUSHBUTTON "&Cancel", IDCANCEL, 35, 61, 50, 14
  69. END
  70.